home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Precision Software Appli…tions Silver Collection 1
/
Precision Software Applications Silver Collection Volume One (PSM) (1993).iso
/
windows
/
games
/
winjack.arj
/
INSTALL.BAT
< prev
next >
Wrap
DOS Batch File
|
1990-10-08
|
466b
|
28 lines
echo off
cls
if "%1" == "" GOTO error
if "%2" == "" GOTO error
echo %1
echo %2
md %1
copy *.* %1
wrini %2\win.ini [extensions] ckb=kpwinrun.exe ^.ckb
GOTO done
:error
echo You must specify a Directory to install WinJack and the WIN.INI Directory
echo Use complete path names.
echo .
echo INSTALL {winjack_dir} {windows_dir}
echo .
echo .
echo example: INSTALL c:\winjack c:\windows
GOTO exit
:done
echo .
echo WinJack Installed
:exit